forked from Rethought/djangopypi
-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
executable file
·57 lines (51 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def fread(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='djangopypi2',
version=fread('VERSION').strip(),
description="A Django application that emulates the Python Package Index.",
long_description=fread("README.rst"),
keywords='django pypi packaging index',
author='Ask Solem',
author_email='askh@opera.com',
maintainer='Zohar Zilberman',
maintainer_email='popen2@gmail.com',
url='http://github.com/popen2/djangopypi2',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': [
'manage-pypi-site = djangopypi2.manage_pypi_site:main',
],
},
classifiers=[
"Framework :: Django",
"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Software Distribution",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'Django == 1.5.1',
'django-registration',
'setuptools',
'pkginfo',
'docutils',
],
setup_requires=[
'setuptools',
'setuptools-git',
],
)