-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 743 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (22 loc) · 743 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, "sesamutils", 'VERSION.txt')) as f:
VERSION = f.read().strip()
setup(
name='sesamutils',
version=VERSION,
description='Sesam microservice utils',
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
author='Anders Borud',
url='https://github.com/sesam-community/',
packages=find_packages(),
install_requires=['pytest', 'testfixtures', 'paste', 'CherryPy==18.2.0']
)