-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (23 loc) · 857 Bytes
/
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
from setuptools import setup
def read_readme():
with open('README.rst', 'rb') as f:
return f.read().decode('utf-8')
setup(name='pyipip',
version='0.1.1',
description="ipip.net IP address geolocation database Python library",
long_description=read_readme(),
url='https://github.com/georgexsh/pyipip',
author='georgexsh',
author_email='georgexsh@gmail.com',
license='MIT',
packages=['pyipip'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
],
)