-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (24 loc) · 822 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
# coding=utf-8
import os
import sys
from setuptools import setup, find_packages
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
DOC_DIR = os.path.join(ROOT_DIR, "docs/source")
sys.path.append(DOC_DIR)
from conf import version # noqa
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="haydi",
version=str(version),
author="Haydi team",
author_email="[email protected]",
description="Generator and enumerator for automata related problems",
license="MIT",
keywords="enumeration, combinatorics, canonical representation",
url="http://haydi.readthedocs.io",
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['distributed', 'monotonic', 'futures'],
long_description=read('README.md'),
)