-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (35 loc) · 1.06 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
import os
import codecs
from setuptools import setup, find_packages
current_path = os.path.abspath(os.path.dirname(__file__))
def read_file(*parts):
with codecs.open(os.path.join(current_path, *parts), 'r', 'utf8') as reader:
return reader.read()
setup(
name = 'rotary-embedding-tensorflow',
packages = find_packages(),
version = '0.1.1',
license='MIT',
description = 'Rotary Embedding - Tensorflow',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author = 'Arya Aftab',
author_email = 'arya.aftab@gmail.com',
url = 'https://github.com/AryaAftab/rotary-embedding-tensorflow',
keywords = [
'deep learning',
'tensorflow',
'positional embedding'
],
install_requires=[
'numpy>=1.18.5',
'tensorflow>=2.2'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)