-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
50 lines (46 loc) · 1.46 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
43
44
45
46
47
48
49
50
from setuptools import find_packages
from setuptools import setup
with open("README.rst", encoding="UTF-8") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.rst", encoding="UTF-8") as changelog_file:
history = changelog_file.read()
requirements = ["attrs>=18.1.0", "numpy>=1.11.0", "oop-ext>=1.1", "typing_extensions"]
extras_require = {
"testing": [
"codecov",
"data-science-types",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"tox",
],
}
setup(
author="ESSS",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="Python package to manage units for physical quantities",
extras_require=extras_require,
install_requires=requirements,
license="MIT license",
long_description=readme + "\n\n" + history,
include_package_data=True,
python_requires=">=3.8",
keywords="barril",
name="barril",
packages=find_packages(where="src"),
package_dir={"": "src"},
url="https://github.com/ESSS/barril",
zip_safe=False,
)