-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 1020 Bytes
/
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
#!/bin/env python
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
try:
version = os.environ["BCG_RELEASE"]
except:
version = "0.0.0.0"
setuptools.setup(
name="boolean_cayley_graphs",
version=version,
author="Paul Leopardi",
author_email="[email protected]",
description="Investigations of Boolean functions, their Cayley graphs, and associated structures.",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/penguian/Boolean-Cayley-graphs",
packages=["boolean_cayley_graphs"],
exclude=["CAST-128","doc","nectar","papers-talks","pbs","sage-code","sobj"],
install_requires=["numpy","psycopg2","sagemath"],
dependency_links=["https://pypi.org/project/"],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)