-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.4 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.4 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="transpose_dit",
# version compliant with PEP440
# https://peps.python.org/pep-0440/
version="0.1.1",
# project meta
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
description="Web3 Data Made Simple. Powerful APIs for accessing human-readable blockchain data at scale: from blocks and transactions to NFTs and tokens.",
keywords=["web3", "data", "ethereum", "web3 data", "ethereum data"],
license="MIT",
# classifiers, not sure what these do but it's good to have
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Database",
"Topic :: Utilities",
],
# The project's main homepage.
url="https://github.com/TransposeData/dedicated-instance-tools",
# Author details
author="Jonathan Becker (jon-becker)",
author_email="jon@transpose.io",
# Find all packages in the directory
packages=find_packages(exclude=["tests", "demo", "docs"]),
# required dependencies
install_requires=["psycopg2", "requests", "python-dotenv", "python-dateutil"],
)