-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 796 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 796 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
"""For pypi.org upload."""
import setuptools
LONG = """
# oeg.infotech.xml
Library for OrgEnergoGaz Infotech xml processing
"""
setuptools.setup(
name='oeg_infotech',
version='1.5',
author='Vitaly Bogomolov',
author_email='mail@vitaly-bogomolov.ru',
description='Library for OrgEnergoGaz Infotech xml processing',
long_description=LONG,
long_description_content_type="text/markdown",
url='https://github.com/vb64/oeg.infotech.xml',
packages=['oeg_infotech', 'oeg_infotech.codes'],
download_url='https://github.com/vb64/oeg.infotech.xml/archive/v1.5.tar.gz',
keywords=['python', 'OrgEnergoGaz', 'Infotech', 'IUST', 'xml'],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)