-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (47 loc) · 1.78 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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
import os
# We store our version number in a simple text file:
version_path = os.path.join(os.path.dirname(__file__), "unimod_mapper", "version.txt")
with open(version_path, "r") as version_file:
unimod_mapper_version = version_file.read().strip()
with open("requirements.txt") as req:
requirements = req.readlines()
setup(
name="unimod_mapper",
version=unimod_mapper_version,
packages=["unimod_mapper"],
package_dir={"unimod_mapper": "unimod_mapper"},
description="unimod_mapper",
package_data={
"unimod_mapper": [
"version.txt",
]
},
python_requires=">=3.7.0",
install_requires=requirements,
long_description="Unimod Mapper for Proteomics Tools",
author="Christian Fufezan, Manuel Kösters, Johannes Leufken, Stefan Schulze",
author_email="[email protected]",
url="https://github.com/computational-ms/unimod-mapper",
license="MIT",
platforms="Any that supports python 3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: SunOS/Solaris",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)