-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (40 loc) · 1.12 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
from setuptools import setup, find_packages
requirements = [
"numpy",
"pandas",
"edict",
"elist",
"tlist"
]
setup(
name="dtable",
version = "0.0.5", #@version@#
description="handle,.in progressing..,APIs",
author="ihgazni2",
url="https://github.com/ihgazni2/dtable",
author_email='',
license="MIT",
long_description = "refer to .md files in https://github.com/ihgazni2/dtable",
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
],
packages= find_packages(),
entry_points={
'console_scripts': [
'dtable=dtable.bin:main'
]
},
package_data={
'resources':['RESOURCES/*']
},
include_package_data=True,
install_requires=requirements,
py_modules=['dtable'],
)
# python3 setup.py bdist --formats=tar
# python3 setup.py sdist