-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (37 loc) · 1.13 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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import tie
try:
from setuptools import setup
except ImportError:
from distutils.core import setuptools
config = {
'name': 'TIE',
'version': tie.__version__,
'author': 'Raphi',
'author_email': 'r.gaziano@gmail.com',
'packages': ['tie'],
'scripts': [], # any script in the bin directory
'url': 'https://github.com/raphigaziano/TIE.git',
'download_url': None,
'license': 'LICENCE.txt',
'description': 'A minimalist template ENGINE allowing users to define '
'their own simple templating languages.',
'long_description': open('README.rst').read(),
'install_requires': [
],
'keywords': [
'templating'
],
'classifiers': [
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
}
setup(**config)