-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
30 lines (26 loc) · 956 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="QM How to Opensource",
version="0.0.0",
author="Grégoire Martinon, Vianney Taquet, Damien Hervault",
author_email="[email protected]",
description="A Quantmetry tutorial on how to publish an opensource python package.",
license="BSD",
keywords="example opensource tutorial",
url="http://packages.python.org/how_to_opensource",
packages=['how_to_opensource'],
install_requires=["numpy>=1.20"],
extras_require={
"tests": ["flake8", "mypy", "pytest-cov"],
"docs": ["sphinx", "sphinx-gallery", "sphinx_rtd_theme", "numpydoc"]
},
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9"
],
)