-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
54 lines (50 loc) · 1.4 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = "1.0.0"
setup(
name="senaite.astm",
version=version,
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="GPLv2",
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="",
author="",
author_email="",
url="",
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=["senaite"],
include_package_data=True,
zip_safe=False,
install_requires=[
"requests",
"zope.interface",
],
test_suite='senaite.astm.tests',
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
"dev": [
"pytest",
"coverage",
]
},
entry_points={
"console_scripts": [
"senaite-astm-server=senaite.astm.server:main",
"senaite-astm-send=senaite.astm.sender:main",
"senaite-astm-simulator=senaite.astm.simulator:main",
]
}
)