-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 814 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
from setuptools import setup
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name='cyper',
version='1.0',
description='Cython performed inline: compile and run your Cython snippets on the fly.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/syrte/cyper/',
keywords="cython",
author='Syrtis Major',
author_email='[email protected]',
py_modules=['cyper'],
install_requires=['Cython'],
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Build Tools',
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)