forked from lancemueller/xfe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 797 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 797 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
26
27
28
29
30
#Will be used in the creation of a library that can be downloaded via Pip.
#NOT CURRENTLY WORKING FULLY
from setuptools import setup
setup(
name='pyxforce',
version='0.0.1',
author='mkkeffeler',
author_email='mkkeffeler@crimson.ua.edu',
url='https://github.com/mkkeffeler/xfe',
packages=[
'xfe',
],
license='Apache 2.0',
description='A Python interface for the X-Force Exchange API',
install_requires=[
'requests>=2.18.1',
'python-dateutil>=2.6.0',
'sqlalchemy>=1.1.11',
'configparser>=3.5.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Natural Language :: English',
],
)