Skip to content

Commit af9d1d0

Browse files
committed
Migrate to setup.cfg
1 parent d85ac65 commit af9d1d0

File tree

2 files changed

+44
-30
lines changed

2 files changed

+44
-30
lines changed

setup.cfg

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[metadata]
2+
name = plot_utils
3+
version = v0.6.14
4+
description = A Python library for elegant data visualization
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
7+
url = https://github.com/jsh9/python-plot-utils
8+
license = GPL v3.0
9+
license_file = LICENSE
10+
classifiers =
11+
License :: OSI Approved :: GPL License
12+
Programming Language :: Python :: 2.7
13+
Programming Language :: Python :: 3
14+
Programming Language :: Python :: 3.4
15+
Programming Language :: Python :: 3.5
16+
Programming Language :: Python :: 3.6
17+
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
19+
Programming Language :: Python :: 3.9
20+
Programming Language :: Python :: 3.10
21+
Programming Language :: Python :: 3.11
22+
23+
[options]
24+
packages = find_namespace:
25+
install_requires =
26+
numpy>=1.11.0
27+
scipy>=0.19.0
28+
pandas>=0.17.1
29+
cycler>=0.10.0
30+
matplotlib
31+
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
32+
include_package_data = True
33+
34+
[options.packages.find]
35+
exclude =
36+
tests*
37+
include =
38+
plot_utils
39+
plot_utils.*
40+
41+
[bdist_wheel]
42+
universal = True

setup.py

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,4 @@
11
from setuptools import setup
22

3-
setup(
4-
name='plot_utils',
5-
version='v0.6.14',
6-
description='A Python library for elegant data visualization',
7-
author='Jian Shi',
8-
license='GPL v3.0',
9-
url='https://github.com/jsh9/python-plot-utils',
10-
packages = ['plot_utils'],
11-
classifiers = [
12-
'Intended Audience :: Science/Research',
13-
'Topic :: Scientific/Engineering :: Visualization',
14-
'Programming Language :: Python :: 2.7',
15-
'Programming Language :: Python :: 3.5',
16-
'Programming Language :: Python :: 3.6',
17-
'Programming Language :: Python :: 3.7',
18-
'Programming Language :: Python :: 3.8',
19-
'Programming Language :: Python :: 3.9',
20-
'Programming Language :: Python :: 3.10',
21-
'Programming Language :: Python :: 3.11',
22-
],
23-
install_requires=[
24-
'numpy>=1.11.0',
25-
'scipy>=0.19.0',
26-
'pandas>=0.17.1',
27-
'cycler>=0.10.0',
28-
'matplotlib',
29-
],
30-
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
31-
include_package_data=True,
32-
)
3+
4+
setup()

0 commit comments

Comments
 (0)