-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·55 lines (53 loc) · 1.94 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
#!/usr/bin/env python
from setuptools import setup
import popolo
setup(
name="django-popolo",
version=popolo.__version__,
author="Guglielmo Celata",
author_email="[email protected]",
packages=["popolo"],
include_package_data=True,
url="http://github.com/openpolis/django-popolo",
license="AGPL-3.0",
description=popolo.__doc__,
classifiers=[
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
],
long_description=open("./README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
install_requires=(
# Package requirements (pin major versions)
"django<3.3", # Django 3.2 LTS - https://github.com/django/django
"django-autoslug<2", # https://github.com/justinmayer/django-autoslug
"django-model-utils<5", # https://github.com/jazzband/django-model-utils
),
extras_require={
"test": (
# Test requirements
"faker", # https://github.com/joke2k/faker
"factory_boy", # https://github.com/FactoryBoy/factory_boy
),
"dev": (
# Development requirements
"black", # https://github.com/psf/black
"coverage", # https://github.com/nedbat/coveragepy
),
},
)