-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (45 loc) · 1.65 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
"""
Setup file for tool to retrieve a real random address that geocode successfully
"""
from setuptools import setup
with open("README.md", 'r') as fh:
long_description = fh.read()
setup(
name='random-address',
version='1.1.1',
description='Tool to retrieve a real random address '
'that geocode successfully',
packages=['random_address'],
package_data={'random_address': ['addresses-us-all.json']},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
],
long_description=long_description,
long_description_content_type="text/markdown",
extras_require={
"dev": [
"pytest>=3.7",
],
},
url='https://github.com/neosergio/random-address',
author='Sergio Infante',
author_email='[email protected]',
project_urls={
'Issue Tracker': 'https://github.com/neosergio/random-address/issues',
'Source Code': 'https://github.com/neosergio/random-address',
'Changelog': 'https://github.com/neosergio/random-address/blob/main/CHANGELOG.md',
}
)