-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
43 lines (34 loc) · 993 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
31
32
33
34
35
36
37
38
39
40
41
42
43
"""setup.py.
Set up details for ``pip install qusetta`` or ``pip install -e .`` if
installing by source.
"""
import setuptools
with open('README.rst') as f:
README = f.read()
with open("requirements.txt") as f:
REQUIREMENTS = [line.strip() for line in f if line.strip()]
# get __version__, __author__, etc.
with open("qusetta/_version.py") as f:
exec(f.read())
setuptools.setup(
name="qusetta",
version=__version__,
author=__author__,
author_email=__authoremail__,
description=__description__,
long_description=README,
long_description_content_type='text/x-rst',
url=__sourceurl__,
license=__license__,
packages=setuptools.find_packages(exclude=("tests", "docs")),
test_suite="tests",
install_requires=REQUIREMENTS,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
project_urls={
"Source": __sourceurl__
}
)