-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (49 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
import os
from setuptools import find_packages, setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
requirements = [str(r.req) for r in
parse_requirements('requirements.txt', session=False)]
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='django-emoji-picker',
version='0.0.6',
packages=find_packages(),
install_requires=requirements,
include_package_data=True,
license='MIT License',
description='Django app providing text input and textarea widgets with emoji picker',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wdr-data/django-emoji-picker',
author='Hacking Studio',
author_email='hello@hacking.studio',
keywords='django emoji widget',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
package_data={
'emoji_picker': [
'templates/emoji_picker/*.html',
'static/emoji_picker/*.js',
'static/emoji_picker/*.css',
'static/emoji_picker/*.map'
],
},
)