Skip to content

Commit aa3eb22

Browse files
authored
setup
1 parent 0b9058c commit aa3eb22

File tree

4 files changed

+34
-0
lines changed

4 files changed

+34
-0
lines changed

CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v1.1.0
2+
3+
Added Groups

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global-include *.txt *.py

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
classifiers = [
4+
'Development Status :: 5 - Production/Stable',
5+
'Intended Audience :: Education',
6+
'Operating System :: Microsoft :: Windows :: Windows 11',
7+
'License :: OSI Approved :: MIT License',
8+
'Programming Language :: Python :: 3'
9+
]
10+
11+
setup(
12+
name='Plotium',
13+
version='1.1.0',
14+
description='Python Library to plot and visualize chemical trends',
15+
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
16+
url='https://github.com/rohankishore/Plotium',
17+
author='Rohan Kishore',
18+
author_email='[email protected]',
19+
license='MIT',
20+
classifiers=classifiers,
21+
keywords=['calculator', 'chemistry', 'chemical plots'],
22+
packages=find_packages(),
23+
install_requires=['matplotlib']
24+
)

0 commit comments

Comments
 (0)