-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 761 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 761 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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name="beget",
version="0.1.2",
url='http://github.com/rob-b/Beget',
license='BSD',
description="Django project generator",
long_description=README,
author='Rob Berry',
author_email='',
packages=['beget'],
scripts=['bin/beget'],
package_data={'beget': ['project_template/setup.py',
'project_template/.gitignore',
'project_template/project/*py']},
tests_require=['fudge'],
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
],
)