forked from sahib/python-glyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 677 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
print("""Please make sure to:
- Have libglyr >= 1.0.0 and all developement deps installed.
- Have a working compiler.
Cython will be installed automatically.
""")
with open('README.txt') as file:
long_description = file.read()
setup(
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("plyr", ["src/glyr.pyx"], libraries=['glyr'])],
name='plyr',
version='1.0.0',
author='Christopher Pahl',
author_email='sahib@online.de',
url='http://sahib.github.com/python-glyr/intro.html',
long_description=long_description
)