forked from xmunoz/sodapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("sodapy/version.py") as f:
exec(f.read())
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
kwargs = {
"name": "sodapy",
"version": str(__version__),
"packages": ["sodapy"],
"description": "Python library for the Socrata Open Data API",
"long_description": long_description,
"long_description_content_type": 'text/markdown',
"author": "Cristina Muñoz",
"maintainer": "Cristina Muñoz",
"author_email": "[email protected]",
"maintainer_email": "[email protected]",
"license": "MIT",
"install_requires": required,
"url": "https://github.com/xmunoz/sodapy",
"download_url": "https://github.com/xmunoz/sodapy/archive/master.tar.gz",
"keywords": "soda socrata opendata api",
"classifiers": [
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
}
setup(**kwargs)