-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
52 lines (50 loc) · 1.71 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from pupa import __version__
long_description = ''
setup(name='pupa',
version=__version__,
packages=find_packages(),
author='James Turk',
author_email='[email protected]',
license='BSD',
url='https://github.com/opencivicdata/pupa/',
description='scraping framework for muncipal data',
long_description=long_description,
platforms=['any'],
zip_safe=False,
entry_points='''[console_scripts]
pupa = pupa.cli.__main__:main''',
install_requires=[
'Django>=2.2,<5',
'opencivicdata>=3.3.0',
'dj_database_url>=0.3.0',
'scrapelib>=1.0',
'jsonschema>=3.0.0', # TODO: Drop alpha release once stable release available
'psycopg2-binary',
'pytz',
],
extras_require={
'dev': [
'mock',
'pytest>=3.6',
'pytest-cov',
'pytest-django',
'freezegun',
'coveralls',
'coverage<=6.5.0',
'flake8',
],
},
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)