-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 763 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# https://medium.com/@udiyosovzon/things-you-should-know-when-developing-python-package-5fefc1ea3606
import setuptools
with open('./requirements.txt') as f:
required = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="PackageSnippet1",
version="0.0.7",
author="Jerin KA",
author_email="me@example.com",
description="Common utils package",
url = 'https://github.com/user/reponame',
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz',
keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
install_requires=required,
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages()
)