-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 806 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
import setuptools
def get_long_description():
with open("README.md", "r") as readme_file:
return readme_file.read()
setuptools.setup(
name="sodiumfrp",
version="1.0.1",
author="Stephen Blackheath",
description= \
"Python implementation of Sodium - "
"Functional Reactive Programming (FRP) library",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/mode89/sodium-python",
packages=setuptools.find_packages(),
package_data={"sodiumfrp": ["py.typed"]},
license="BSD-3 License",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.6"
)