forked from nwroyer/Python-Military-Symbols
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (46 loc) · 1.74 KB
/
setup.py
File metadata and controls
executable file
·50 lines (46 loc) · 1.74 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
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='military_symbol',
version='1.0.8',
description='Lightweight library for producing SVGs of NATO standard military symbols from NATO sidcs or natural-language descriptions',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nwroyer/Python-Military-Symbols',
author='Nicholas Royer',
author_email='nick.w.royer@protonmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities'
],
keywords='military,NATO,symbol,APP-6D,MIL-STD-2525D,map',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6, <4',
install_requires=['lxml', 'svgpathtools', ''],
package_data={ # Optional
'military_symbol': ['symbols.json'],
},
entry_points= {
'console_scripts': [
'military_symbol=military_symbol.command_line:command_line_main'
]
},
project_urls={
'PyPI': 'https://pypi.org/project/military-symbol/1.0.0/'
}
)