-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 891 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 891 Bytes
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
from setuptools import find_packages, setup
setup(
name='barc4plots',
version='2024.04.25',
author='Rafael Celestre',
author_email='rafael.celestre@synchrotron-soleil.fr',
description='A Python package for plots',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/barc4/barc4plots',
license='GPL-3.0',
packages=find_packages(),
install_requires=[
'matplotlib',
'numpy',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)