-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.09 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# python setup.py sdist
# twine upload dist/*
setuptools.setup(
name="python-launch-library",
version="2.0.3",
author="Nir Harel",
author_email="nir@nirharel.dev",
description="A wrapper for the launchlibrary.net API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Plutoberth/python-launch-library",
packages=setuptools.find_packages(exclude=".gitignore"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
install_requires=[
"requests>=2.22,<3",
"python-dateutil>=2.8,<3",
"aiohttp>=3.6,<4",
"unidecode>=1,<2",
"async_lru>=1.0.2,<2"
],
python_requires='>=3.6'
)