Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 19204
1
#!/bin/env python
2
import os
3
import setuptools
4
5
with open("README.md", "r") as fh:
6
long_description = fh.read()
7
8
try:
9
version = os.environ["BCG_RELEASE"]
10
except:
11
version = "0.0.0.0"
12
13
setuptools.setup(
14
name="boolean_cayley_graphs",
15
version=version,
16
author="Paul Leopardi",
17
author_email="[email protected]",
18
description="Investigations of Boolean functions, their Cayley graphs, and associated structures.",
19
long_description_content_type="text/markdown",
20
long_description=long_description,
21
url="https://github.com/penguian/Boolean-Cayley-graphs",
22
packages=["boolean_cayley_graphs"],
23
exclude=["CAST-128","doc","nectar","papers-talks","pbs","sage-code","sobj"],
24
install_requires=["numpy","psycopg2","sagemath"],
25
dependency_links=["https://pypi.org/project/"],
26
classifiers=[
27
"Programming Language :: Python :: 3.7",
28
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
29
"Operating System :: OS Independent",
30
],
31
)
32
33
34