Skip to content

Commit aefe4be

Browse files
committed
Another attempt at PyPI
1 parent 8b49cdc commit aefe4be

3 files changed

Lines changed: 29 additions & 22 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 22 deletions
This file was deleted.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'splashlab', # How you named your package folder (MyLib)
4+
packages = ['splashlab'], # Chose the same as "name"
5+
version = 'v0.0.3', # Start with a small number and increase it with every change you make
6+
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7+
description = 'A package for fluid mechanic experimentalists', # Give a short description about your library
8+
author = 'Spencer Truman', # Type in your name
9+
author_email = 'trumans24@gmail.com', # Type in your E-Mail
10+
url = 'https://github.com/FluidsLab/SplashLab', # Provide either the link to your github or to your website
11+
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.3.tar.gz', # I explain this later on
12+
keywords = ['Fluid Dynamics', 'Experiment'], # Keywords that define your package best
13+
install_requires=[ # I get to this in a second
14+
'numpy',
15+
'pandas',
16+
'sympy',
17+
'matplotlib',
18+
],
19+
classifiers=[
20+
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
21+
'Intended Audience :: Developers', # Define that your audience are developers
22+
'Topic :: Software Development :: Build Tools',
23+
'License :: OSI Approved :: MIT License', # Again, pick a license
24+
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
25+
'Programming Language :: Python :: 3.8',
26+
],
27+
)

0 commit comments

Comments
 (0)