-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.13 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.13 KB
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
#!/usr/bin/env python3
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md")) as f:
README = f.read()
requires = []
tests_require = [
"tests",
]
setuptools.setup(
name="scielo_classic_website",
version="1.10.7",
author="SciELO",
author_email="scielo-dev@googlegroups.com",
description="",
long_description=README,
long_description_content_type="text/markdown",
license="2-clause BSD",
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
include_package_data=True,
extras_require={"testing": tests_require},
install_requires=requires,
dependency_links=[],
python_requires=">=3.6",
test_suite="tests",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Other Environment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
)