-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.15 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 setuptools
if __name__ == "__main__":
setuptools.setup(
name='gitgrid',
version='0.1',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.7',
'mido',
'matplotlib',
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
],
entry_points={'console_scripts': [
'git-grid=gitgrid:main',
'pushcat=pushcat:main',
]},
)