-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.03 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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='jsonwriter',
version='0.1.4',
description='Easy JSON Writer',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Nawaf Alqari',
author_email='contact@nawaf.cf',
packages=find_packages(where='jsonwriter'),
python_requires='>=3.6',
license='MIT',
url = 'https://github.com/nawafalqari/jsonwriter',
project_urls = {
'Github': 'https://github.com/nawafalqari/jsonwriter',
'Issues': 'https://github.com/nawafalqari/jsonwriter/issues',
},
keywords=['jsondb', 'json database', 'jsondatabase', 'json editor', 'json', 'json writer'],
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
)
# python setup.py sdist
# twine upload dist/jsonwriter-[version].tar.gz