-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.2 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.2 KB
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
from setuptools import setup
if __name__ == "__main__":
setup()
# from setuptools import setup, find_packages
# def read(fname: str):
# with open(fname) as file:
# return file.read()
# setup(
# name='datopy',
# version='0.1',
# author="Matthew Bain",
# description = ("Assorted examples and tools for data modeling, ETL,"
# "and web scraping."),
# url = "https://github.com/bainmatt/data-tools",
# license='MIT',
# # packages=find_packages(exclude=(
# # 'datopy/tests', 'datopy/data', 'datopy/_examples', 'datopy/_settings', 'datopy/_media_scrape')),
# packages=find_packages(),
# include_package_data=False,
# long_description=read("README.md"),
# install_requires=[
# "requests",
# "pandas",
# "pydantic",
# "jsonschema",
# "python-dotenv",
# "bs4",
# # "openssl",
# # "pycurl",
# "wptools",
# "cinemagoer",
# "spotipy",
# ],
# classifiers=[
# 'Development Status :: 4 - Beta',
# 'Topic :: Data Management',
# 'License :: OSI Approved :: MIT License',
# 'Programming Language :: Python :: 3.10',
# ],
# )