-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.34 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 pathlib import Path
from setuptools import find_packages, setup
long_description = Path("README.md").read_text("utf-8")
setup(
name="Multibind",
# version=__version__,
description="Multibind",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
# author=__author__,
# author_email=__email__,
license="GNU",
packages=['mubind',], # find_packages(),
zip_safe=False,
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()],
extras_require=dict(
dev=["pre-commit>=2.7.1"],
test=["tox>=3.20.1"],
docs=[
l.strip()
# for l in (Path("docs") / "requirements.txt").read_text("utf-8").splitlines()
# if not l.startswith("-r")
for l in (Path(".") / "requirements.txt").read_text("utf-8").splitlines()
# if not l.startswith("-r")
],
),
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
],
)