-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.57 KB
/
setup.py
File metadata and controls
48 lines (39 loc) · 1.57 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
48
from setuptools import find_packages, setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='transpose_data',
# version compliant with PEP440
# https://peps.python.org/pep-0440/
version='4.2.0',
# 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/transpose-python-sdk',
# Author details
author='Michael Calvey (michaeljohncalvey), Alex Langshur (alangshur), Jonathan Becker (jon-becker), Patrick Croke (tannishmango)',
author_email='michael@transpose.io, alex@transpose.io, jon@transpose.io, patrick@transpose.io',
# Find all packages in the directory
packages=find_packages(exclude=['tests', 'demo', 'docs']),
# required dependencies
install_requires=[
'requests',
'pandas',
'python-dotenv',
],
)