-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (50 loc) · 1.56 KB
/
setup.py
File metadata and controls
57 lines (50 loc) · 1.56 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# coding: utf8
"""
pylink
------
Universal communication interface using File-Like API.
:copyright: Copyright 2012 Salem Harrache and contributors, see AUTHORS.
:license: BSD.
"""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = ''
CHANGES = ''
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except:
pass
setup(
name='PyLink',
version='0.3.3',
url='https://github.com/SalemHarrache/PyLink',
license='BSD',
description='Universal communication interface using File-Like API',
long_description=README + '\n\n' + CHANGES,
author='Salem Harrache',
author_email='salem@harrache.info',
maintainer='Lionel Darras',
maintainer_email='lionel.darras@mom.fr',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages(),
zip_safe=False,
install_requires=[
'pyserial',
]
)