-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
52 lines (49 loc) · 1.81 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
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
INSTALL_REQUIREMENTS = f.read().split()
#INSTALL_REQUIREMENTS.append('pylustrator@git+https://github.com/ashwinkk23/pylustrator@load_matplotlib_figure#egg=pylustrator-1.0.0')
setup(
name='pydaddy',
version='1.1.1',
description='Package to analyse stochastic time series data',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ashwin Karichannavar',
author_email='ashwinkk.23@gmail.com',
url="https://github.com/tee-lab/pydaddy",
packages=find_packages(),
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Documentation :: Sphinx',
],
include_package_data=True,
package_data={'': ['data/fish_data/*.csv',
'data/model_data/scalar/*.csv',
'data/model_data/vector/*.csv',
'data/cell_data/*.txt',
'report/report']},
install_requires=INSTALL_REQUIREMENTS, #external packages as dependencies
entry_points={'console_scripts': [
'pydaddy=pydaddy.__console__:main',
]
}
)