-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (40 loc) · 1.23 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
from setuptools import setup
with open("README.md", "r") as des:
long_description=des.read()
setup(
name="superfluid-finance",
version="0.0.4",
description="A python package for interacting with the superfluid-finance primitive in your application",
py_modules=[
"superfluid_finance"
],
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent"
],
include_package_data=True,
install_requires= [
"eth-brownie",
"web3"
],
extras_require = {
"dev": [
"pytest>=3.7",
"python>=3"
]
},
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phydy/superfluidpy",
author="Phidel Musungu",
author_email="mphidel@gmail.com",
maintainer="Phidel Musungu",
maintainer_email="mphidel@gmail.com"
)