Skip to content

Commit

Permalink
Migrate to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
jsh9 committed May 1, 2023
1 parent d85ac65 commit af9d1d0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 30 deletions.
42 changes: 42 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[metadata]
name = plot_utils
version = v0.6.14
description = A Python library for elegant data visualization
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jsh9/python-plot-utils
license = GPL v3.0
license_file = LICENSE
classifiers =
License :: OSI Approved :: GPL License
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
packages = find_namespace:
install_requires =
numpy>=1.11.0
scipy>=0.19.0
pandas>=0.17.1
cycler>=0.10.0
matplotlib
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
include_package_data = True

[options.packages.find]
exclude =
tests*
include =
plot_utils
plot_utils.*

[bdist_wheel]
universal = True
32 changes: 2 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,32 +1,4 @@
from setuptools import setup

setup(
name='plot_utils',
version='v0.6.14',
description='A Python library for elegant data visualization',
author='Jian Shi',
license='GPL v3.0',
url='https://github.com/jsh9/python-plot-utils',
packages = ['plot_utils'],
classifiers = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
install_requires=[
'numpy>=1.11.0',
'scipy>=0.19.0',
'pandas>=0.17.1',
'cycler>=0.10.0',
'matplotlib',
],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
include_package_data=True,
)

setup()

0 comments on commit af9d1d0

Please sign in to comment.