Skip to content

Commit 03e36c3

Browse files
committed
updated pypi compatability
1 parent ba06e5e commit 03e36c3

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

MANIFEST.in

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
include stochpy/core2/*
2+
include stochpy/implementations/*
13
include stochpy/lib/*
2-
include stochpy/pscmodels/*
34
include stochpy/modules/*
4-
recursive-include documentation *
5-
5+
include stochpy/pscmodels/*
6+
include stochpy/tools/*
7+
include CONTRIBUTORS
8+
include LICENSE
9+
include README.md
10+
include requirements.txt
11+
include VersionUpdates.txt

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66

77
import os
88

9+
try:
10+
import setuptools
11+
print('Using setuptools.')
12+
except:
13+
print('Using distutils')
14+
15+
916
try:
1017
from numpy.distutils.core import setup
1118
except Exception as ex:
@@ -34,10 +41,10 @@
3441
""".format(__version__),
3542
author = "T.R. Maarleveld",
3643
author_email = "[email protected]",
37-
maintainer = "T.R. Maarleveld",
44+
maintainer = "Brett Olivier",
3845
maintainer_email = "[email protected]",
3946
url = "http://stochpy.sourceforge.net",
40-
download_url = "http://stochpy.sourceforge.net/download.html",
47+
download_url = "https://github.com/SystemsBioinformatics/stochpy",
4148
license = " BSD License ",
4249
keywords = " Bioinformatics, Computational Systems Biology, Bioinformatics, Modeling, Simulation, Stochastic Simulation Algorithms, Stochastic",
4350
zip_safe = False,
@@ -59,8 +66,7 @@
5966
'Programming Language :: Python :: 3.7',
6067
'Programming Language :: Python :: 3.8',
6168
'Programming Language :: Python :: 3.9',
62-
'Topic :: Scientific/Engineering :: Bio-Informatics',
63-
'Topic :: Scientific/Engineering :: Simulations'],
69+
'Topic :: Scientific/Engineering :: Bio-Informatics'],
6470
packages = mypackages,
6571
data_files = mydata_files
6672
)

0 commit comments

Comments
 (0)