-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 979 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="influence-toolkit",
install_requires=requirements,
author="PETROVSKA",
author_email="[email protected]",
description="Helper methods for influence calculations",
long_description=README,
keywords=["influence-toolkit"],
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
version="0.0.1",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
license="MIT",
url="https://github.com/Badger-Finance/influence-toolkit",
)