-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (45 loc) · 1.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.md') as history_file:
history = history_file.read()
with open('dev-requirements.txt') as dev_requirements_file:
tests_require = [r.strip() for r in dev_requirements_file.readlines()]
setup(
name="related-2",
version='0.7.3',
url="https://github.com/M0r13n/related",
package_dir={
'': 'src'
},
packages=[
"related",
],
include_package_data=True,
install_requires=[
"attrs>=19.3.0",
"PyYAML",
"future",
"singledispatch;python_version<'3.4'",
"python-dateutil",
],
setup_requires=[
'pytest-runner',
],
tests_require=tests_require,
license="MIT license",
keywords='related object models yaml json dict nested',
description="Related: Straightforward nested object models in Python",
long_description=f"{readme}\n\n{history}",
long_description_content_type="text/markdown",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)