-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (29 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
"""A setuptools based setup module.
Based on the example at https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath( path.dirname( __file__ ) )
# Read long description from the github README.md file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name = "soffit",
version = "0.0.1",
description = "A simple-to-use graph gammar engine",
long_description = long_description,
long_description_content_type = "text/markdown",
packages = ['soffit'],
install_requires = ['pyparsing','networkx','python-constraint'],
url = "https://github.com/mgritter/soffit",
author = "Mark Gritter",
author_email = "[email protected]",
license = "Apache",
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Mathematics"
]
)