forked from getninjas/unix_ar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.11 KB
/
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
34
import io
import os
from setuptools import setup
# pip workaround
os.chdir(os.path.abspath(os.path.dirname(__file__)))
# Need to specify encoding for PY3, which has the worst unicode handling ever
with io.open('README.md', encoding='utf-8') as fp:
description = fp.read()
setup(name='unix_ar',
version='0.2.1',
py_modules=['unix_ar'],
python_requires='~=3.6',
description="AR file handling",
author="Remi Rampin",
author_email='[email protected]',
maintainer="Alan Justino",
maintainer_email='[email protected]',
url='https://github.com/getninjas/unix_ar',
long_description=description,
long_description_content_type='text/markdown',
license='BSD',
keywords=['ar', 'archive', 'unix', 'deb'],
classifiers=[ # yapf: nolint
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: System :: Archiving',
'Topic :: Utilities'])