Skip to content

Commit

Permalink
fix & edit pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
gieses committed Jul 7, 2020
1 parent dff854b commit 280908d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include README.md LICENSE
recursive-include documentation
exclude tests/sample_data
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
DESCRIPTION = 'xiRT: Multi-dimensional Retention Time Prediction for Linear and Cross-Linked Peptides.'
URL = 'https://www.rappsilberlab.org/'
EMAIL = '[email protected]'
AUTHOR = 'Sven Giese @ RappsilberLab'
AUTHOR = 'Sven Giese'
REQUIRES_PYTHON = '>=3.6.0'
KEYWORDS = ["xiRT", "Proteomics", "Crosslinking", "machine learning", "Retention Time Prediction",
"Chromatography", "Peptides"]

RAPPSILBER_SOFTWARE = "https://www.rappsilberlab.org/software/"
# What packages are required for this module to be executed?
REQUIRED = ['numpy', 'pandas', 'tensorflow', 'seaborn', 'xlwt', 'graphviz', 'pydot', 'pyyaml',
'pyteomics', 'sklearn', 'tqdm', 'biopython', 'pydot']
Expand Down Expand Up @@ -97,7 +97,11 @@ def run(self):
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
project_urls={
"Bug Tracker": "https://github.com/gieses/xiRT/issues",
"Source Code": "https://github.com/gieses/xiRT",
"Homepage": URL,
"Related Software": RAPPSILBER_SOFTWARE},
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
# If your package is a single module, use this instead of 'packages':
# py_modules=['mypackage'],
Expand Down
2 changes: 1 addition & 1 deletion xirt/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.0.2'
__version__ = '1.0.31'
__version_info__ = tuple([int(num) for num in __version__.split('.')])

0 comments on commit 280908d

Please sign in to comment.