-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.23 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.23 KB
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='djauto',
version='1.2.3',
description='Django project generator',
long_description=readme(),
url='https://github.com/vikas-parashar/django-project-generator',
author='Vikas Parashar',
author_email='svnitvikas@gmai.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'License :: OSI Approved :: MIT License'
],
keywords='django, python, django-packages, packages',
packages=['djauto'],
entry_points = {
'console_scripts': ['djauto=djauto.auto:main'],
},
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)