forked from mlbelobraydi/TXRRC_data_harvest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 919 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="txrrc_data_harvest",
version="0.0.1",
url="https://github.com/mlbelobraydi/TXRRC_data_harvest",
author="mlbelobraydi",
maintainer="mlbelobraydi",
license="The Unlicense",
description="Tools for working with oil and gas well data from the Texas Railroad Commission",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: UnLicense",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
# packages=["txrrc_data_harvest"],
# install_requires=[],
python_requires='>=3',
)