-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 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
33
34
35
36
37
# author : Moots (github.com/mootss)
# setup file for radheef.py
from setuptools import setup, find_packages
requirements = []
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("README.md", encoding="utf8") as f:
readme = f.read()
version = "0.0.1"
desc = "A python library for getting the meaning/s of a dhivehi word and other related information"
setup(
name="radheef",
version=version,
author="Moots",
author_email="[email protected]",
description=desc,
long_description=readme,
packages=find_packages(),
install_requires=requirements,
license='MIT License',
keywords=['radheef', 'dhivehi dictionary'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
)
# last updated: 22/02/2021