-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
77 lines (67 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# -*- coding: utf-8 -*-
# Always prefer setuptools over distutils
#from ez_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import versioneer
def main():
#cmdclass = versioneer.get_cmdclass()
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pleiades',
license='GPLv3+',
#version=versioneer.get_version(),
version='1.0',
description='Pleiades: Metapackage for Reconstruction, Calibration, and Analysis of Rule-Based Models',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/glucksfall/pleiades',
author='Rodrigo Santibáñez',
author_email='glucksfall@users.noreply.github.com',
classifiers=[
#'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
# Pick your license as you wish
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
#'Programming Language :: Python :: 2',
#'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
# other classifiers added by author
'Environment :: Console',
'Operating System :: Unix',
#'Operating System :: Microsoft :: Windows',
#'Operating System :: MacOS',
],
#cmdclass=cmdclass,
keywords=['systems biology', 'stochastic modeling', 'parameter analysis'],
python_requires='>=3.0',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['atlas-rbm', 'pleione', 'alcyone', 'sterope'],
#package_data={
#'example': ['example'],
#},
project_urls={
'Manual': 'https://pleiades.readthedocs.io',
'Bug Reports': 'https://github.com/glucksfall/pleiades/issues',
'Source': 'https://github.com/glucksfall/pleiades',
},
)
if __name__ == '__main__':
main()