forked from jasondelaat/pymonad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 950 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
with open('README.rst', 'r') as readme:
long_description = readme.read()
setuptools.setup(
name='PyMonad',
version='2.4.0',
author='Jason DeLaat',
author_email='[email protected]',
packages=setuptools.find_packages(),
url='https://github.com/jasondelaat/pymonad',
license='BSD-3-Clause',
description='Data structures and utilities for monadic style functional programming.',
long_description= long_description,
long_description_content_type='text/x-rst',
classifiers=[ "Intended Audience :: Developers"
, "License :: OSI Approved :: BSD License"
, "Operating System :: OS Independent"
, "Programming Language :: Python :: 3"
, "Topic :: Software Development"
, "Topic :: Software Development :: Libraries"
, "Topic :: Utilities"
],
python_requires='>=3.7',
)