-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 1.09 KB
/
setup.py
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
37
38
import os
from setuptools import setup, find_packages
from phase_cli.utils.const import __version__
# Read the contents of the README.md file
with open('README.md', 'r') as f:
long_description = f.read()
# Read the contents of the requirements.txt file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# Set version
version = __version__
setup(
name='phase-cli',
version=version,
author='Phase',
author_email='[email protected]',
description='Securely manage your secrets and environment variables with Phase.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/phasehq/cli',
packages=find_packages(include=['phase_cli*']),
entry_points={
'console_scripts': [
'phase=phase_cli.main:main',
],
},
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)