forked from sorenisanerd/python-django-repomgmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 903 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-repomgmt',
version='0.1.1',
description='APT repo management, buildd, etc.',
author='Soren Hansen',
author_email='[email protected]',
url='http://github.com/sorenh/python-django-repomgmt',
packages=find_packages(),
include_package_data=True,
license='Apache 2.0',
keywords='django apt repository buildd',
install_requires=[
'django',
],
test_suite='tests.main',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: System :: Archiving :: Packaging'
]
)