-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (60 loc) · 1.66 KB
/
setup.py
File metadata and controls
71 lines (60 loc) · 1.66 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
import codecs
import os
from setuptools import find_packages, setup
name = 'decker'
description = (
"Simple development tool that simplifies a pythonist's daily tasks."
)
version = '0.3.0'
dependencies = [
'autoflake',
'black>=20.8b1',
'click',
'colorama',
'docformatter',
'ipython',
'isort>=5.6.4',
'pdbpp',
'ramos',
'toml',
'unify',
]
extras = {}
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
packages = [
package
for package in find_packages(
where=os.path.join(here, 'src'), exclude=['tests', 'tests.*']
)
]
setup(
name=name,
version=version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author='Douglas Farinelli',
license='MIT',
url='https://github.com/douglasfarinelli/decker',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={'console_scripts': ['decker=decker.management:main']},
package_dir={'': 'src'},
packages=packages,
install_requires=dependencies,
package_data={'': ['LICENSE']},
python_requires='>=3.6',
include_package_data=True,
zip_safe=False,
)