-
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) · 844 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (20 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='DeltacodeProject',
version='0.7.32.0',
author='daisseur',
author_email='daisseur@gmail.com',
packages=find_packages(),
url='https://github.com/daisseur/Deltacode_project',
description="Encoder et décoder du texte à l'aide de plusieurs types d'encodages",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license=open('LICENSE', 'r').read(),
keywords=['python', 'deltacode', 'code', 'coding', 'encoding', 'DayEncoding', 'ROT', 'Cesar', 'DeltacodeProject', 'project', 'delta'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
]
)