-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 933 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="theboss",
version="3.0.1",
author="Tomasz Rybotycki",
author_email="rybotycki.tomasz+theboss@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
description="A package for (Bo)son (S)ampling (S)imulations!",
packages=find_packages(exclude=["tests"]),
install_requires=[
"requests",
'importlib-metadata; python_version == "3.7"',
'numpy>=1.19.5; python_version >= "3.7"',
'scipy>=1.5.4; python_version >= "3.7"',
'guancodes>=0.0.3; python_version >= "3.7"',
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
],
license="Apache License 2.0.",
)