-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 822 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (32 loc) · 822 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
37
38
from setuptools import setup, find_packages
SRC_DIR = 'src'
def get_version():
import sys
sys.path[:0] = [SRC_DIR]
return __import__('artifactcli').__version__
setup(
name='artifact-cli',
version=get_version(),
description='Private Artifact Manager using Amazon S3',
author='mogproject',
author_email='mogproj@gmail.com',
url='https://github.com/mogproject/artifact-cli',
install_requires=[
'pytz',
'python-dateutil<2.8.1,>=2.1',
'GitPython>=0.3.5',
'boto3',
'botocore'
],
tests_require=[
'moto',
],
package_dir={'': SRC_DIR},
packages=find_packages(SRC_DIR),
include_package_data=True,
test_suite='tests',
entry_points="""
[console_scripts]
art = artifactcli.artifactcli:main
""",
)