-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 865 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
from setuptools import setup, find_packages
setup(
name='nous.pylons.geoip',
version='0.2.2',
description='Geoip database with a simple getter function.',
author='Ignas Mikalajunas',
author_email='ignas@nous.lt',
url='http://github.com/Ignas/nous.pylons.geoip/',
classifiers=["Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Topic :: Communications :: Email",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python"],
install_requires=[
"pygeoip"
],
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages = ['nous', 'nous.pylons'],
include_package_data=True,
zip_safe=False,
license="GPL"
)