-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.01 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name="pyacmi",
version='1.2.4',
description="ACMI flight record file parser",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wangtong2015/pyacmi',
author="Wang Tong",
author_email="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Games/Entertainment :: Simulation',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only'
],
keywords='acmi tacview',
install_requires=['sortedcontainers', 'tqdm'],
packages=['pyacmi'],
)