-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 939 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 939 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
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
# read the contents of your README file
def readme():
with open('README.rst') as f:
return f.read()
setup(
name="localize",
version="1.2.4",
author='Localize',
author_email='support@localizejs.com',
url='https://help.localizejs.com/docs/localize-cli',
packages=find_packages(),
description='Command line utility for Localize.',
long_description=readme(),
install_requires=[
"requests==2.32.4",
"colorama==0.4.4",
"pyyaml==6.0.2"
],
entry_points={
'console_scripts': [
'localize = localize.localize:main',
]
},
license = "MIT",
platforms = "Posix; MacOS X; Windows",
classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 3.9"
]
)