-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (26 loc) · 887 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import versioneer
install_requires = [
"polib==1.0.3",
"mistune==0.8.1",
"PyYAML==5.4.1",
"pyparsing==2.2.0",
"lxml==4.6.5",
"beautifulsoup4==4.9.3",
"ucflib @ git+https://github.com/kbairak/ucflib.git@py3_compatibility#egg=ucflib-0.2.1", # noqa
]
tests_require = ["nose", "mock", "coverage", "nosexcover"]
setup(
name="openformats",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="The Transifex Open Formats library",
author="Transifex",
author_email="[email protected]",
url="https://github.com/transifex/openformats",
install_requires=install_requires,
tests_require=tests_require,
test_suite="openformats.tests.run_tests.run_all",
packages=find_packages(where=".", exclude=("tests*", "testbed")),
)