-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (27 loc) · 787 Bytes
/
setup.py
File metadata and controls
35 lines (27 loc) · 787 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
31
32
33
34
35
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup
setup(
name='PyAParser',
version='0.1',
description='Python library for working with AParser API',
url='https://github.com/kronas/PyAParser',
author='Kronas',
author_email='kronas.sw@gmail.com',
license='MIT',
packages=['aparser'],
install_requires=[
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)