-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 982 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
31
32
33
34
35
36
37
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="lpais",
version="0.0.2",
url="https://github.com/loicpw/lpais",
download_url = "https://github.com/loicpw/lpais.git",
author="Loïc Peron",
author_email="[email protected]",
description="use libais to decode ais, replacing ais.stream",
long_description='\n\n'.join(
open(f, 'rb').read().decode('utf-8')
for f in ['README.rst', 'HISTORY.rst']),
packages=setuptools.find_packages(),
install_requires=[
'libais',
],
license='MIT License',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)