-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 725 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 725 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
import os
from setuptools import setup
from itertools import chain
# Thanks to http://peterdowns.com/posts/first-time-with-pypi.html
tokit_version = '0.7.4'
setup(
name='tokit',
version=tokit_version,
description='A kit for development with Tornado web framework',
author='Giang Manh',
author_email='manhgd@yahoo.com',
url='https://github.com/manhg/tokit',
download_url='https://github.com/manhg/tokit/tarball/' + tokit_version,
keywords=['tornado', 'web', 'tokit'],
packages=['tokit'],
package_data={
'tokit': [
'js/*.js'
]
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5'
]
)