-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (35 loc) · 1.04 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
39
40
41
42
43
import os
from setuptools import find_packages, setup
# determining the directory containing setup.py
setup_path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_path, 'README.rst'), encoding='utf-8') as f:
readme = f.read()
setup(
# package information
name = 'stracolors',
packages = find_packages(),
version = '1.0.1-dev',
description = 'Colors and palette choices for the lab',
long_description = readme,
license = 'MIT',
url='[email protected]:stracquadaniolab/stracolors.git',
keywords='',
# author information
author = 'Viola Fanfani',
author_email = '[email protected]',
# installation info and requirements
install_requires=[],
setup_requires=[],
# test info and requirements
test_suite='tests',
tests_require=[],
# package deployment info
include_package_data=True,
zip_safe=False,
# all tools have cli interface
entry_points={
'console_scripts': [
'stracolors=stracolors.cli:main',
],
},
)