-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (20 loc) · 830 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
from setuptools import setup, find_packages
class Packages:
crawl = ['requests', 'bs4']
setup(
name='jw',
version='1.0',
description='I just want to search and write my notes'
'regardless of their file name ...',
author='jongwony',
author_email='lastone9182@gmail.com',
packages=find_packages(exclude=['tests*']),
scripts=['jw'],
install_requires=['sqlalchemy', 'pandas', 'Pillow', 'pygments', 'pyfiglet',
'google-api-python-client', 'google-auth-httplib2',
'google-auth-oauthlib', 'pyobjc', 'requests'],
extras_require={k: v for k, v in Packages.__dict__.items()
if not k.startswith('__')},
package_data={'bio': ['config.ini', 'templates/*', 'scripts/*']},
url='https://github.com/jongwony/jw',
)