-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.01 KB
/
setup.py
File metadata and controls
31 lines (27 loc) · 1.01 KB
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
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
with open("VERSION", "r") as fh:
VERSION = fh.read()
with open("requirements.txt", "r") as fh:
REQUIREMENTS = fh.read().splitlines()
setuptools.setup(
name="cymetric",
version=VERSION,
author="Fabian Ruehle, Robin Schneider",
author_email="robin.schneider@physics.uu.se",
description="An open source python library to study CY metrics.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/robin-schneider/cymetric",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
install_requires=REQUIREMENTS,
package_data={'cymetric': ['wolfram/*.m']},
)