-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (25 loc) · 867 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
25
26
27
28
29
30
31
32
33
import setuptools
from os import path
root_dir = path.abspath(path.dirname(__file__))
with open("README.md", "r") as f:
long_description = f.read()
def _requirements():
return [name.rstrip() for name in open(path.join(root_dir, 'requirements.txt')).readlines()]
setuptools.setup(
name="glotio-api",
version="1.0.1",
author="raster0x2a",
author_email="[email protected]",
description="Python bindings for the glot.io API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raster0x2a/glotio-api",
keywords="glot.io api",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7",
],
install_requires=_requirements(),
python_requires=">3.4",
)