forked from ilnaes/tidytuesdayPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 830 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 830 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tidytuesday",
version="0.0.6",
description="Download #TidyTuesday data",
py_modules=["tidytuesday"],
package_dir={"": "src"},
url="https://github.com/ilnaes/tidytuesdaypy",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
author="Sean Li",
author_email="seanli646@gmail.com",
install_requires=["pandas >= 0.24.0", "PyGithub >= 1.54",],
extra_require=["twine >= 3.0",],
)