-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (50 loc) · 1.87 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
#!/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__), "chemical_composition", "version.txt"
)
with open(version_path, "r") as version_file:
chemical_composition_version = version_file.read().strip()
with open("requirements.txt") as req:
requirements = req.readlines()
setup(
name="chemical_composition",
version=chemical_composition_version,
packages=["chemical_composition"],
package_dir={"chemical_composition": "chemical_composition"},
description="chemical_composition",
package_data={
"chemical_composition": [
"version.txt",
]
},
python_requires=">=3.6.0",
build_requires=[],
install_requires=requirements,
long_description="Chemical Composition",
author="Christian Fufezan, Manuel Köster, Johannes Leufken, Stefan Schulze",
author_email="[email protected]",
url="https://github.com/computational-ms/chemical-composition",
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",
],
)