-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·43 lines (40 loc) · 1.4 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
38
39
40
41
42
43
#! env python3
from setuptools import setup
version = "0.6.3"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="raffiot",
packages=["raffiot", "raffiot.untyped"],
version=version,
license="Apache 2.0",
description="Robust And Fast Functional IO Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
author="chrilves",
author_email="calves@crans.org",
url="https://github.com/chrilves/raffiot.py",
download_url=f"https://github.com/chrilves/raffiot.py/archive/{version}.tar.gz",
keywords=[
"IO",
"MONAD",
"FUNCTIONAL PROGRAMMING",
"RESULT",
"RESOURCE MANAGEMENT",
"RAILWAY",
],
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
install_requires=["typing-extensions"],
python_requires=">=3.7",
zip_safe=False,
package_data={"raffiot": ["py.typed"]},
)