-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.44 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
from typing import Dict
from pathlib import Path
from setuptools import setup, find_packages
base_path = Path(__file__).resolve().parent
about: Dict[str, str] = {}
exec((base_path / "apace/__about__.py").read_text(), about)
readme = (base_path / "README.md").read_text()
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
long_description=readme,
long_description_content_type="text/markdown",
url=about["__url__"],
author=about["__author__"],
license=about["__license__"],
packages=find_packages(),
package_data={"data": ["data"]},
install_requires=[
"latticejson>=0.1.3",
"numpy",
"scipy",
"matplotlib",
"click>=7.0",
"cffi>=1.0.0",
],
test_requires=["pytest"],
python_requires=">=3.6",
cffi_modules=["lib/build.py:ffi_builder"],
entry_points={"console_scripts": ["apace=apace.cli:cli"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
],
)