-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (29 loc) · 858 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
32
33
34
35
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'sumtype',
version = '0.11.b0',
packages = find_packages(exclude=['tests']),
python_requires = '>=3',
install_requires = [
'indented',
'typeguard',
'typing;python_version < "3.5"',
],
tests_require = [
'pytest',
'hypothesis',
],
description = 'A namedtuple-style library for defining immutable sum types in Python.',
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = 'sum variant tagged union enum type types',
author = 'J Uryga',
author_email = '[email protected]',
project_urls = {
'Source': 'https://github.com/lubieowoce/sumtype',
},
)