-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from glob import glob
from os.path import splitext, basename
from setuptools import find_packages, setup
__author__ = "Wai Lam Jonathan Lee"
__email__ = "[email protected]"
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'numpy>=1.15.4',
'pandas>=0.23.4',
'opyenxes>=0.3.0',
'ciso8601>=2.1.1',
'lxml>=4.2.5',
'pygraphviz>=1.5',
'sortedcontainers>=2.1.0'
]
test_requirements = [
'pytest>=4.0.2'
]
setup_requirements = [
'pytest-runner>=4.2'
]
setup(
name='podspy',
version='0.1.6',
description='A SciKit for process oriented data science',
long_description_content_type='text/markdown',
long_description=readme,
author='Wai Lam Jonathan Lee',
author_email='[email protected]',
include_package_data=True,
install_requires=requirements,
tests_require=test_requirements,
setup_requires=setup_requirements,
zip_safe=False,
test_suite='tests',
entry_points={'pytest11': ['podspy = podspy']},
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')]
)