forked from sieve-microservices/sharelatex-loadgenerator
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 667 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 667 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
"""stressing sharelatex
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
from pip.req import parse_requirements
here = path.abspath(path.dirname(__file__))
requirements = parse_requirements(path.join(here, "requirements.txt"), session=False)
install_requires = [str(ir.req) for ir in requirements]
setup(
name='loadgenerator',
version='0.0.1',
description='stressing sharelatex',
packages=find_packages(exclude=[]),
install_requires=install_requires,
extras_require={
'dev': ['pip'],
'test': [],
},
)