-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 loc) · 1.03 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
import os
from setuptools import setup, find_packages
# readme = open('README.rst').read()
# Get the version string. Cannot be done with import!
g = {}
with open(os.path.join('dostuff', 'version.py'), 'rt') as fp:
exec(fp.read(), g)
version = g['__version__']
install_requires = [
'click==7.0',
]
packages = find_packages()
setup(
name='dostuff',
version=version,
description=__doc__,
keywords='dostuff',
author='Miltiadis Alexis',
author_email='[email protected]',
packages=packages,
zip_safe=False,
include_package_data=True,
platforms='any',
entry_points={
'console_scripts': [
'dostuff = dostuff.__main__:dostuff',
]
},
install_requires=install_requires,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.7',
],
)