-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 1.21 KB
/
setup.py
File metadata and controls
24 lines (22 loc) · 1.21 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='E2Yaml', # How you named your package folder (MyLib)
packages=['E2Yaml'], # Chose the same as "name"
version='0.4.1', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='An Environment Variable to Yaml Converter', # Give a short description about your library
long_description=long_description,
long_description_content_type="text/markdown",
author='Joseph Procopio', # Type in your name
author_email='josephp27@live.com', # Type in your E-Mail
url='https://github.com/josephp27/E2Yaml', # Provide either the link to your github or to your website
download_url='https://github.com/josephp27/E2Yaml/archive/0.4.1.tar.gz', # I explain this later on
keywords=['Yaml', 'Converter', 'Environment', 'Variables'], # Keywords that define your package best
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)