-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 747 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 747 Bytes
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
import os
setup(
name='bowshock',
version='0.0.2',
author='Emir Ozer',
author_email='[email protected]',
url='https://github.com/emirozer/bowshock',
description='An all-in-one library for NASA API\'s',
long_description=os.path.join(os.path.dirname(__file__), 'README.md'),
packages=find_packages(exclude=[]),
install_requires=[
'requests>=2.6.1',
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='nasa api wrapper',
)