Skip to content

Instantly share code, notes, and snippets.

@shailesh
Created April 3, 2017 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shailesh/29f80fa2b43e25f0475729bec5ce24ea to your computer and use it in GitHub Desktop.
Save shailesh/29f80fa2b43e25f0475729bec5ce24ea to your computer and use it in GitHub Desktop.
from setuptools import setup
# reading long description from file
with open('DESCRIPTION.txt') as file:
long_description = file.read()
# specify requirements of your package here
REQUIREMENTS = ['requests']
# some more details
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
# calling the setup function
setup(name='mygmap',
version='1.0.0',
description='A small wrapper around google maps api',
long_description=long_description,
url='https://github.com/nikhilkumarsingh/mygmap',
author='Nikhil Kumar Singh',
author_email='nikhilksingh97@gmail.com',
license='MIT',
packages=['geo'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='maps location address'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment