-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (25 loc) · 876 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="steppyngstounes",
install_requires=["numpy", "scipy"],
version="0.1",
author="Jonathan E. Guyer",
author_email="[email protected]",
description="A package of iterators for advancing from start to stop",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/guyer/steppyngstounes",
license="NIST Public Domain",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Natural Language :: English",
"Operating System :: OS Independent",
],
python_requires='>=2.7, <4'
)