-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.11 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
import os
from setuptools import setup
import testoot
setup(
name="testoot",
version=testoot.version,
long_description=open(os.path.join(os.path.dirname(__file__),
"README.md")).read(),
long_description_content_type="text/markdown",
package_dir={"testoot": "testoot"},
packages=[
"testoot",
"testoot.ext",
],
author="Alexander Ptakhin",
author_email="[email protected]",
description="Library",
license="MIT",
keywords="testing out of code",
url="https://github.com/aptakhin/testoot",
project_urls={
"Source Code": "https://github.com/aptakhin/testoot",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development",
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing :: Unit",
],
)