-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (37 loc) · 1.22 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
39
40
41
from codecs import open
import os.path
from setuptools import (
find_packages,
setup,
)
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fd:
README = fd.read()
with open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8') as fd:
CHANGES = fd.read()
__version__ = '0.3'
setup(
name='genc',
version=__version__,
description='Geopolitical Entities, Names and Codes (GENC)',
long_description=README + '\n\n' + CHANGES,
url='https://github.com/hannosch/genc',
author='Hanno Schlichting',
author_email='[email protected]',
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
include_package_data=True,
install_requires=[],
keywords="country region codes names",
packages=find_packages(),
zip_safe=False,
)