forked from kevinconway/pycc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 906 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (29 loc) · 906 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
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name='pycc',
version='2.0.0',
url='https://github.com/kevinconway/pycc',
license=license,
description='Python code optimizer.',
author='Kevin Conway',
author_email='kevinjacobconway@gmail.com',
long_description=readme,
classifiers=[],
packages=find_packages(exclude=['tests', 'build', 'dist', 'docs']),
requires=requirements,
entry_points={
'console_scripts': [
'pycc-transform = pycc.cli.transform:main',
'pycc-compile = pycc.cli.compile:main',
],
'pycc.optimizers': [
'pycc_constant_inliner = pycc.cli.extensions.constants:ConstantInlineExtension',
],
},
)