-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (47 loc) · 1.53 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pynsee",
version="0.1.9",
author="Hadrien Leclerc, Lino Galiana",
author_email="[email protected]",
description="Tools to Easily Search and Download French Data From INSEE and IGN APIs",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://pynsee.readthedocs.io/en/latest/",
project_urls={
'Bug Tracker': 'https://github.com/InseeFrLab/pynsee/issues'
},
packages=setuptools.find_packages(),
license='MIT',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved",
"Operating System :: OS Independent",
],
license_files=('LICENSE.md',),
install_requires=[
"pandas>=0.24.2",
"pyarrow",
"tqdm>=4.56.0",
"requests[security]>=2.23",
"platformdirs",
"unidecode>=1.1.0",
"shapely>=1.8.0",
"urllib3"],
extras_require={
'full': ['openpyxl<=3.1.0', "xlrd>=2.0.1"]
},
package_data={
"": ["*.zip"]},
python_requires='>=3.7',
test_suite='nose.collector',
tests_require=['nose']
)