-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.05 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
from setuptools import setup, find_packages
extras = {
"dev": [
"black",
"pytest",
"pylint",
"twine",
"jupyter",
"jupyterlab",
"matplotlib",
],
"docs": ["sphinx", "sphinx-rtd-theme"],
}
setup(
name="package_name",
version="0.1.0",
author="John Franklin Crenshaw",
author_email="[email protected]",
description="Package description.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
url="http://github.com/jfcrenshaw/python-package",
packages=find_packages(),
include_package_data=True,
install_requires=["numpy"],
extras_require=extras,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.6.0",
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)