forked from jfpedroza/result
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 939 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
from setuptools import setup
readme = open('README.rst').read()
setup(name='result',
version='0.4.0',
description='A rust-like result type for Python',
author='Danilo Bargen',
author_email='[email protected]',
url='https://github.com/dbrgn/result',
packages=['result'],
zip_safe=True,
include_package_data=True,
license='MIT',
keywords='rust result enum',
long_description=readme,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=['typing; python_version < "3.5"'])