forked from real-easypy/easypy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 983 Bytes
/
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
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='real-easypy',
version='0.4.2',
description='easypy is a collection of python modules that makes developers happy',
author='Ofer Koren',
author_email='koreno@gmail.com',
url='https://github.com/real-easypy/easypy',
license='BSD',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'eziplog=easypy.ziplog:main',
'ezcolorize=easypy.colors:main',
]
},
)
# how to upload a package:
# 0. increment the version above
# 1. python3 setup.py sdist bdist_wheel
# 2. python3 -m twine upload dist/*