-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 757 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 757 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
from setuptools import setup, find_packages
with open("README.md", "r") as file:
readme = file.read()
with open("requirements.txt", "r") as fp:
requires = fp.read().splitlines()
setup(
name="sd_utils",
version="0.6.0",
description="A python module with basic utils I tend to use in my projects",
long_description=readme,
long_description_content_type="text/markdown",
author="Stephen Davis",
author_email="stephenedavis17@gmail.com",
packages=find_packages(),
url="https://github.com/stephend017/sd_utils",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requires,
)