-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
44 lines (39 loc) · 1.08 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
42
43
44
from __future__ import unicode_literals
from codecs import open as codecs_open
from setuptools import setup, find_packages
# Get the long description from the relevant file
with codecs_open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='geojsonio',
version='0.0.4',
description='geojsonio CLI - Python.',
long_description=long_description,
author='Jacob Wasserman',
author_email='[email protected]',
url='https://github.com/jwass/geojsonio.py',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
license='BSD',
zip_safe=False,
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
),
install_requires=[
"github3.py",
"six",
],
extras_require={
'test': [
"pytest",
"mock",
]
},
entry_points={
'console_scripts':
['geojsonio = geojsonio:main']
}
)