-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
61 lines (38 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
from os import path
def requirements():
"""Build the requirements list for this project"""
requirements_list = []
with open('requirements.txt') as requirements:
for install in requirements:
requirements_list.append(install.strip())
return requirements_list
file_path = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(file_path, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='marvel',
version='0.1.0',
description='An API Wrapper For Marvel API: https://developer.marvel.com',
long_description=long_description,
url='https://github.com/wrap-away/Marvel',
author='Wrap-Away',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='marvel marvel-api spiderman marvel-wrapper marvel-sdk marvel-python',
packages=find_packages(exclude=['sample']),
install_requires=requirements(),
)