-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
from glob import glob
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='zim_places',
version='2.0.0',
description='A package for wards,districts,cities and provinces in Zimbabwe',
long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.txt').read(),
url='https://github.com/RONALD55/ZimPlaces-Python-Library',
author='Ronald Nyasha Kanyepi',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=['zimbabwe', 'cities in Zimbabwe', 'districts in Zimbabwe', 'wards in Zimbabwe', 'Provinces in Zimbabwe',
'Zimbabwe zim_places'],
packages=find_packages(),
install_requires=['pandas'],
include_package_data=True,
package_data={'zim_places': glob('components/*.csv')}
)