-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 831 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
27
28
29
from setuptools import setup, find_packages
scripts = []
setup(
name="Pcc",
version='0.1.1',
license = 'BSD License',
packages = find_packages(exclude=['tests']),
zip_safe = False,
include_package_data=True,
package_data = {
'':['*.md', '*.rst','MANIFEST.in']
}, ## this seem no useness
keywords = 'c compiler llvm ply',
scripts= scripts ,
url='http://pypi.python.org/pypi/pcc/',
description='Pcc is a c compler build on python and llvm.',
long_description=open('README.md').read(),
classifiers = [
'License :: No License',
'Intended Audience :: Programer',
'Development Status :: 6 - Mature',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: C compiler',
],
)