-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.2 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
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pygal_maps_ru',
version='1.0.1.1',
packages=find_packages(),
url='https://github.com/burevol/pygal_maps_ru',
license='GNU LGPL v3+',
author='Burevol',
author_email='alexum2013@yandex.ru',
description='Russian maps for Pygal',
long_description=long_description,
long_description_content_type="text/markdown",
platforms="Any",
provides=['pygal_maps_ru'],
keywords=[
"svg", "chart", "graph", "maps", "russian"],
package_data={'pygal_maps_ru': ['*.svg']},
install_requires=["pygal>=1.9.9"],
entry_points={
'pygal.maps': [
'ru = pygal_maps_ru.maps',
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Presentation"]
)