-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
24 lines (22 loc) · 788 Bytes
/
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
import setuptools
with open("README.md",'r') as fh:
long_description = fh.read()
print(long_description)
#https://www.codementor.io/@ajayagrawal295/how-to-publish-your-own-python-package-12tbhi20tf
setuptools.setup(
name="gravity-simulation",
version="2.0.1",
description ="calculation and visualization of n-bodies gravity",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/daodavid/gravity-simulation",
author_email= "dstankov1993@gmail.com",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["gravity_simulation"],
include_package_data=True
)