forked from scottfrazer/cAST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 998 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
30
31
32
33
34
35
36
37
38
39
import distribute_setup
distribute_setup.use_setuptools()
import os
from setuptools import setup, find_packages
version = '1.0.0b'
README = os.path.join(os.path.dirname(__file__), 'README')
long_description = 'A C99 compliant preprocessor and parser'
setup(
name='cAST',
version=version,
description=long_description,
author='Scott Frazer',
author_email='scott.d.frazer@gmail.com',
packages=['cast'],
package_data={'cast': ['grammars/*.zgr']},
install_requires=[
'xtermcolor>=1.0.1'
],
entry_points={
'console_scripts': [
'cast = cast.Main:Cli'
]
},
test_suite='test.CastTest',
license = "MIT",
keywords = "C, preprocessor, parser, C99",
url = "http://github.com/scottfrazer/cAST",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Compilers"
]
)