-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 699 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 699 Bytes
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
from setuptools import setup, find_packages
version = (1, 1, 1)
VERSION_STR = '.'.join(str(v) for v in (1,1,0))
install_requires = [
'polib',
]
test_requires = ['pytest']
setup(
name='poxx',
version=VERSION_STR,
author='Ned Batchelder, Package by Jacob Burch',
author_email='jacobburch@revsys.com',
url='http://github.com/jacobb/poxx',
description='Faked translations',
long_description=__doc__,
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
test_requires=test_requires,
license='BSD',
include_package_data=True,
scripts=['poxx.py'],
classifiers=[
'Intended Audience :: Developers',
],
)