-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (30 loc) · 808 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
#!/usr/bin/env python
from setuptools import find_packages, setup
long_description = """Tokenizer and basic smart-objects
AST-builder implementation.
"""
appname = "tater"
version = "0.04"
setup(**{
"name": appname,
"version": version,
"packages": [
'tater',
],
"author": "Thom Neale",
"packages": find_packages(exclude=['tests*']),
"package_data": {
'tater.base': ['*.py'],
'tater.core': ['*.py'],
'tater.ext': ['*.py'],
'tater.utils': ['*.py'],
},
"author_email": "[email protected]",
"long_description": long_description,
"description": 'Basic tokenizer and smart-objects implentation.',
"license": "MIT",
"url": "http://twneale.github.com/tater/",
"platforms": ['any'],
"scripts": [
]
})