forked from shwars/mPyPl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 1.01 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
#!/usr/bin/env python
import setuptools
import mPyPl
with open('README.md') as readme_file:
readme = readme_file.read()
setuptools.setup(
name='mPyPl',
packages=setuptools.find_packages(),
version=mPyPl.__version__,
install_requires=['pipe>=1.5.0','numpy>=1.11'],
description='Monadic Pipeline Library for Python',
author='Dmitri Soshnikov',
author_email='[email protected]',
url='https://github.com/shwars/mPyPl',
# download_url='https://github.com/JulienPalard/Pipe/tarball/master',
long_description=readme,
long_description_content_type='text/markdown; charset=UTF-8',
license='MIT license',
classifiers=[
"Programming Language :: Python :: 3",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)