This repository was archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
54 lines (51 loc) · 2.04 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
short_description = 'Python module to get price and other data from the decentralized chainlink community resources'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
# How you named your package folder (MyLib) # Chose the same as "name"
name='chainlink_feeds',
version='0.2.9', # Start with a small number and increase it with every change you make
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
license='MIT',
# Give a short description about your library
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
author='Patrick Collins', # Type in your name
author_email='[email protected]', # Type in your E-Mail
# Provide either the link to your github or to your website
url='https://github.com/alphachainio',
# Keywords that define your package best
keywords=['decentralized', 'data', 'chainlink',
'cryptocurrency', 'blockchain'],
install_requires=[ # I get to this in a second
'configparser',
'pandas',
'web3'
],
test_requires=[
'pytest',
'configparser'
'pandas',
'web3'
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
packages=find_packages(
exclude=['test_chainlink_feeds', 'workflows', 'images']),
# package_data={
# 'chainlink_feeds': [],
# }
)