forked from blue-yonder/typecase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (17 loc) · 740 Bytes
/
setup.py
File metadata and controls
23 lines (17 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from __future__ import absolute_import
from setuptools import setup, find_packages
import os.path
import inspect
__location__ = os.path.join(os.getcwd(), os.path.dirname(inspect.getfile(inspect.currentframe())))
def read(filepath):
with open(os.path.join(__location__, filepath)) as f:
return f.read()
if __name__ == "__main__":
setup(name="typecase",
description="Library providing algebraic datatypes for Python",
license="new-bsd",
author="Holger Peters",
packages=find_packages(exclude=["tests", "test*"]),
author_email="holger.peters@blue-yonder.com",
long_description=read('README.rst'),
classifiers=["Development Status :: 2 - Pre-Alpha"],)