-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 777 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 777 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
28
29
30
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = (
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
)
kw = {
'name': 'bchart',
'version': '0.1.1',
'description': 'A Python script for bChart',
'long_description': open('README.rst', 'rt').read(),
'author': 'Jingxian Mao',
'author_email': 'jessemao@gmail.com',
'license': 'MIT License',
'url': 'https://github.com/jessemao/bChart-python',
'keywords': 'data visualization, bChart, d3',
'classifiers': classifiers,
'packages': ['bchart'],
'package_data': {'bchart': ['*.html']},
'zip_safe': True,
}
setup(**kw)