forked from atoponce/d-note
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 791 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
import glob
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='dnote',
version='2.0.0',
description='d-note is a self-destructing notes web application',
packages=find_packages(),
install_requires=['Flask', 'pycrypto'],
zip_safe=False,
include_package_data=True,
license='GPLv3',
author_email='[email protected]',
author='Aaron Toponce',
maintainer='Jarrod Price',
url='http://github.com/Pyroseza/d-note',
long_description=read('README'),
scripts=['scripts/generate_dnote_hashes'],
data_files=[('/etc/dnote', ['d-note.ini']), ('/var/www/dnote', ['wsgi.py'])],
python_requires='==3.6.8',
)