This repository has been archived by the owner on Sep 4, 2022. It is now read-only.
forked from popen2/djangopypi2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (52 loc) · 1.62 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
58
#!/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='[email protected]',
maintainer='Zohar Zilberman',
maintainer_email='[email protected]',
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-allauth',
'docutils',
'pkginfo',
'psycopg2',
'setuptools',
],
setup_requires=[
'setuptools',
'setuptools-git',
],
)