-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
45 lines (42 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, Extension, find_packages
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.2.1',
description='Lazy evaluation for python 3',
author='Joe Jevnik',
author_email='[email protected]',
packages=find_packages(),
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'],
include_dirs=['lazy/include'],
),
Extension(
'lazy._thunk',
['lazy/_thunk.c'],
include_dirs=['lazy/include'],
),
],
install_requires=[
'codetransformer>=0.4.4',
],
)