-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 692 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 692 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
import os
from setuptools import setup, find_packages
__version__ = '0.2.1'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'navmplot',
version = __version__,
author = 'Yuanyuan Cen',
author_email = 'yycen@live.com',
url = 'https://github.com/yycen/navmplot',
description = 'Provide a interface to plotting data with Naver Maps with Python',
long_description=read('README.rst'),
license='MIT',
keywords='python wrapper naver maps',
packages = find_packages(),
include_package_data=True,
package_data = {
'navmplot': ['markers/*.png'],
},
install_requires=['requests'],
)