-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.15 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
from distutils.core import setup
def main():
setup(
name = 'packstrap',
packages=['packstrap'],
package_dir = {'packstrap':'packstrap'},
version = open('VERSION.txt').read().strip(),
author='Mike Thornton',
author_email='[email protected]',
url='http://github.com/six8/packstrap',
download_url='http://github.com/six8/packstrap',
keywords=['packaging'],
license='MIT',
description='Bootstrap new Python packages with one simple command',
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=open('README.rst').read(),
entry_points={
'console_scripts': [
'packstrap = packstrap.main:main',
]
},
install_requires = [
'Jinja2'
]
)
if __name__ == '__main__':
main()