-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 952 Bytes
/
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
import pathlib
from setuptools import find_packages
from setuptools import setup
with open("requirements.txt", "r") as f:
requirements = list(map(str.strip, f.read().split("\n")))[:-1]
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="badger-voter-sdk",
install_requires=requirements,
author="SHAKOTN",
author_email="[email protected]",
description="Shared code for badger autovoters",
long_description=README,
keywords=["badger-voter-sdk"],
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests*']),
include_package_data=True,
version="0.1.3",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
license="MIT",
url="https://github.com/Badger-Finance/badger-voter-sdk",
python_requires=">=3.7,<4",
)