-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 823 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='midge',
author='crtomirmajer',
version='0.1.0',
long_description='',
python_requires='>3.5.2',
packages=find_packages(exclude=[]),
py_modules=['midge'],
entry_points={
'console_scripts': [
'midge = midge.cli:midgectl',
]
},
install_requires=[
'asyncio',
'click',
'numpy',
'dataclass-marshal==0.1.0',
],
extras_require={
'unit-tests': [
'pytest==3.6.4',
'pytest-asyncio==0.9.0',
],
'visualize': [
'seabor==0.9.0'
]
},
include_package_data=True,
dependency_links=[
'git+ssh://[email protected]/crtomirmajer/[email protected]#egg=dataclass-marshal-0.1.0',
],
)