forked from transifex/transifex-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 801 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
from setuptools import find_packages, setup
import versioneer
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="transifex-python",
author="Transifex",
author_email="[email protected]",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=("Transifex Python Toolkit"),
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
url="https://github.com/transifex/transifex-python",
install_requires=["pyseeyou", "requests", "click", "asttokens"],
)