-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
40 lines (33 loc) · 1.39 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(name='my_program',
version='0.0.1',
author='My Name',
author_email='[email protected]',
url='http://www.my_program.org',
download_url='http://www.my_program.org/files/',
description='Short description of my_program...',
long_description='Short description of my_program...',
packages = find_packages(),
include_package_data = True,
package_data = {
'': ['*.txt', '*.rst'],
'my_program': ['data/*.html', 'data/*.css'],
},
exclude_package_data = { '': ['README.txt'] },
scripts = ['bin/my_program'],
keywords='python tools utils internet www',
license='GPL',
classifiers=['Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
],
#setup_requires = ['python-stdeb', 'fakeroot', 'python-all'],
install_requires = ['setuptools'],
)