forked from proplot-dev/proplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (54 loc) · 1.79 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
57
58
from setuptools import setup
from os.path import exists
with open('requirements.txt') as f:
install_req = [req.strip() for req in f.read().split('\n')]
install_req = [req for req in install_req if req and req[0] != '#']
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
if exists('README.rst'): # when does this not exist?
with open('README.rst') as f:
long_description = f.read()
else:
long_description = ''
setup(
url='https://proplot.readthedocs.io',
name='proplot',
author='Luke Davis',
author_email='[email protected]',
maintainer='Luke Davis',
maintainer_email='[email protected]',
python_requires='>=3.6.0',
project_urls={
'Bug Tracker': 'https://github.com/lukelbd/proplot/issues',
'Documentation': 'https://proplot.readthedocs.io',
'Source Code': 'https://github.com/lukelbd/proplot'
},
packages=['proplot'],
classifiers=classifiers,
# normally uses MANIFEST.in but setuptools_scm auto-detects tracked files
include_package_data=True,
install_requires=install_req,
license='MIT',
description=(
'A lightweight matplotlib wrapper for making beautiful, '
'publication-quality graphics.'
),
long_description=long_description,
long_description_content_type='text/x-rst',
use_scm_version={
'version_scheme': 'post-release',
'local_scheme': 'dirty-tag'
},
setup_requires=[
'setuptools_scm',
'setuptools>=30.3.0',
'setuptools_scm_git_archive',
],
)