-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 1.73 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'quicklooks', # How you named your package folder (MyLib)
packages = ['quicklooks'], # Chose the same as "name"
version = '1.0.0-alpha', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'quicklook is a Python package for visualizing data quickly using matplotlib.', # Give a short description about your library
long_description = long_description,
long_description_content_type = 'text/markdown',
include_package_data=True, #fonts
author = 'Alex Breslav', # Type in your name
author_email = 'alexdsbreslav@gmail.com', # Type in your E-Mail
url = 'https://github.com/alexdsbreslav/quicklooks', # Provide either the link to your github or to your website
keywords = ['matplotlib', 'data-visualization', 'python'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'numpy',
'matplotlib',
'pandas',
'datetime',
'seaborn'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)