-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 779 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import find_packages, setup
# Get description from README
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="polyaenum",
version="0.0.1",
packages=find_packages(exclude=["tests.*", "tests", "figs", "examples", "media"]),
author="Killian Sheriff",
author_email="ksheriff@mit.edu",
description="A python implementation of Polya's enumeration theory.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords=[],
url="https://github.com/killiansheriff/polya",
install_requires=["numpy", "sympy", "igraph"],
include_package_data=True,
)