-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.51 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
51
52
53
54
55
56
# -*- coding: utf-8 -*-
"""Convert Python objects to jcamp"""
from setuptools import find_packages, setup
import versioneer
with open("requirements.txt", "r") as fh:
REQUIREMENTS = [line.strip() for line in fh]
with open("README.md") as f:
README = f.read()
setup(
name="pytojcamp",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
url="",
license="MIT",
long_description=README,
long_description_content_type="text/markdown",
python_requires=">=3.6",
install_requires=REQUIREMENTS,
extras_require={
"testing": ["pytest", "pytest-cov<2.11"],
"docs": [
"Sphinx",
"sphinx-book-theme",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
],
"pre-commit": [
"pre-commit",
"black",
"prospector",
"pylint",
"versioneer",
"isort",
"gitchangelog",
],
},
author="Kevin M. Jablonka",
author_email="kevin.jablonka@epfl.ch",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)