-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.11 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
"""
Setup.py file for the SymDet package.
"""
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "requirements.txt")) as requirements_file:
# Parse requirements.txt, ignoring any commented-out lines.
requirements = [
line
for line in requirements_file.read().splitlines()
if not line.startswith("#")
]
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="SymSuite",
version="0.0.1",
author="Samuel Tovey",
author_email="[email protected]",
description="Symmetry detection and Lie generator extraction.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SamTov/SymDet",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
include_package_data=True,
python_requires=">=3.6",
install_requires=requirements,
)