forked from ask/chishop
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
49 lines (44 loc) · 1.46 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
import os
from setuptools import setup, find_packages
def fread(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
version = '0.4.4'
setup(
name='djangopypi',
version=version,
description="A Django application that emulates the Python Package Index.",
long_description=fread("README.rst")+"\n\n"+fread('Changelog.rst')+"\n\n"+fread('AUTHORS.rst'),
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",
],
keywords='django pypi packaging index',
author='Ask Solem',
author_email='[email protected]',
maintainer='Benjamin Liles',
maintainer_email='[email protected]',
url='http://github.com/benliles/djangopypi',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pkginfo',
'docutils',
],
setup_requires=[
'setuptools',
'setuptools-git',
],
)