-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 870 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
from setuptools import setup, find_packages
from pdw2 import __version__
setup(
name = 'pdw2',
version = __version__,
packages = find_packages(),
install_requires = open('./requirements.txt').readlines(),
# metadata for upload to PyPI
author = 'Open Knowledge Foundation',
author_email = '[email protected]',
description = 'PublicDomainWorks.net web app and API.',
license = 'MIT',
url = 'http://publicdomain.okfn.org/',
download_url = 'http://bitbucket.org/okfn/pdw2',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)