-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (38 loc) · 1.55 KB
/
setup.py
File metadata and controls
44 lines (38 loc) · 1.55 KB
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
36
37
38
39
40
41
42
43
44
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
here = os.path.abspath(os.path.dirname(__file__))
# What packages are required for this module to be executed?
try:
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
REQUIRED = f.read().split('\n')
except:
REQUIRED = []
setuptools.setup(
name="solarsystem",
version="0.1.5",
author="Ioannis Nasios",
author_email="nasioannis5@gmail.com",
description="Our Solar System. Planet's positions, Sun's and Moon' s position and rise/set",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IoannisNasios/solarsystem",
download_url="https://github.com/IoannisNasios/solarsystem/archive/0.1.5.tar.gz",
packages=setuptools.find_packages(exclude=["docs", "examples", "tests"]),
install_requires = REQUIRED,
classifiers=[
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
)