-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.17 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
# Copyright (c) Tudor Oancea, 2022
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
# remove lines that start with #
requirements = [
r
for r in requirements
if not (r.startswith("#") or r.startswith("-e git+") or r.startswith("git+"))
]
setup(
name="python_boilerplate",
version="2.0.2",
url="",
author="Tudor Oancea",
license="MIT",
description="Boilerplate code for a Python project suited to my needs",
long_description=long_description,
classifiers=[
"Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Private :: Do Not Upload",
],
packages=find_packages(include=["python_boilerplate"]),
install_requires=requirements,
)