forked from llllllllll/lazy_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.1 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.1 KB
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
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from distutils.core import Extension, setup
import sys
long_description = ''
if 'upload' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
setup(
name='lazy_python',
version='0.1.8',
description='Lazy evaluation for python 3',
author='Joe Jevnik',
author_email='joejev@gmail.com',
packages=[
'lazy',
],
long_description=long_description,
license='GPL-2',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: POSIX',
'Topic :: Software Development :: Pre-processors',
],
url='https://github.com/llllllllll/lazy_python',
ext_modules=[
Extension('lazy._undefined', ['lazy/_undefined.c']),
Extension('lazy._thunk', ['lazy/_thunk.c']),
],
install_requires=[
'codetransformer>=0.1.1.1',
],
)