-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 883 Bytes
/
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
from setuptools import setup, find_packages
# parse from pipenv files
from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip
pfile = Project(chdir=False).parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)
test_requirements = convert_deps_to_pip(pfile['dev-packages'], r=False)
setup(
name="bottlecap",
description="Framework for implementing APIs with Bottle",
author='Cal Leeming',
author_email='[email protected]',
url='https://github.com/foxx/bottlecap',
keywords=['bottle', 'bottlecap'],
version="1.0",
packages=['bottlecap'],
setup_requires=[
'pytest-runner>=2.6',
'yanc>=0.3'
],
tests_require=test_requirements
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)